From: Jim Blandy Date: Wed, 16 Jun 1993 20:02:58 +0000 (+0000) Subject: * sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95301 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=37fd7901b2e694e07267ef6999875fb31fed70ad;p=emacs.git * sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it disables the meta key. --- diff --git a/src/sysdep.c b/src/sysdep.c index 194ec0cea50..e696cb3d352 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -1168,6 +1168,11 @@ init_sys_modes () #endif tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | old_tty.lmode; +#ifdef ultrix + /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt + anything, and leaving it in breaks the meta key. Go figure. */ + tty.lmode &= ~LLITOUT; +#endif #ifdef BSD4_1 lmode = tty.lmode;